(help-make-xrefs): Skip spaces too when skipping tabs.
authorMartin Rudalics <rudalics@gmx.at>
Mon, 2 Jul 2007 05:55:01 +0000 (05:55 +0000)
committerMartin Rudalics <rudalics@gmx.at>
Mon, 2 Jul 2007 05:55:01 +0000 (05:55 +0000)
lisp/help-mode.el

index 98b27623ce070f0cab2e427e070c33becb3d15f9..075b893ad6f0ab5242dfdd18832e224d3294d650 100644 (file)
@@ -487,7 +487,7 @@ that."
                      ;; Skip a single blank line.
                      (and (eolp) (forward-line))
                      (end-of-line)
-                     (skip-chars-backward "^\t\n")
+                     (skip-chars-backward "^ \t\n")
                      (if (and (>= (current-column) col)
                               (looking-at "\\(\\sw\\|-\\)+$"))
                          (let ((sym (intern-soft (match-string 0))))